315eab169dfabd510d0f4c014e9f533a09d69460,server/src/main/java/com/orientechnologies/orient/server/distributed/ODistributedConfiguration.java,ODistributedConfiguration,upgrade,#,44

Before Change


            }
            clusterConfig.field("servers", servers, OType.EMBEDDEDLIST);
          }
          clusterConfig.removeField("partitioning");
          modified = true;
        }
      }

After Change


        // if (clusterConfig.removeField("replication") != null)
        // modified = true;

        final ODocument partitioning = (ODocument) clusterConfig.removeField("partitioning");
        if (partitioning != null) {
          final Collection partitions = partitioning.field("partitions");
          if (partitions != null) {